GET api/tag/list?identifiers[0]={identifiers[0]}&identifiers[1]={identifiers[1]}

Get a list of tags by a list of ids Processes this tag API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tagid

the list of ids

Collection of integer

Required

Body Parameters

None.

Response Information

Resource Description

A System.Net.Http.HttpResponseMessage value...

Collection of TagDataContract
NameDescriptionTypeAdditional information
Name

The name value.

string

None.

SystemStatusName

The system status name value.

string

None.

TagType

The tag type value.

EnumDataContract

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "SystemStatusName": "sample string 2",
    "TagType": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "Id": 3
  },
  {
    "Name": "sample string 1",
    "SystemStatusName": "sample string 2",
    "TagType": {
      "Id": 1,
      "Name": "sample string 2",
      "SystemName": "sample string 3"
    },
    "Id": 3
  }
]